home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 34 / Creative-Review-CD-ROM-34.iso / pc / jkd / folio / scripts.cst / 00034_Script_Live Button < prev   
Text File  |  1998-01-26  |  677b  |  34 lines

  1. on mouseEnter
  2.   global imageBar
  3.   if (getAt(the selectedImage of imageBar,6) <> "-") then
  4.     global liveButton
  5.     overButton liveButton
  6.     updateStage
  7.   end if
  8. end
  9.  
  10. on mouseDown
  11.   global imageBar
  12.   if (getAt(the selectedImage of imageBar,6) <> "-") then
  13.     global liveButton
  14.     downButton liveButton
  15.     updateStage
  16.   end if
  17. end
  18.  
  19. on mouseUp
  20.   global imagebar
  21.   if (getAt(the selectedImage of imageBar,6) <> "-") then
  22.     global liveButton
  23.     overButton liveButton
  24.     updateStage
  25.     gotoNetPage getAt(the selectedImage of imageBar,6), "jkdwork"
  26.   end if
  27. end
  28.  
  29. on mouseLeave
  30.   global liveButton
  31.   normalButton liveButton
  32.   updateStage
  33. end
  34.